home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0961 / wintidy.dpr < prev    next >
Text File  |  1997-04-14  |  242b  |  15 lines

  1. program WinTidy;
  2.  
  3. uses
  4.   Forms,
  5.   MainForm in 'MainForm.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'David''d Windows Tidy';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.